This command allows a user to include (insert) other macro or (text) file to the macro. Before macro execution is started, the <-include-> is replaced by content defined in the command (macro or file). This command makes it possible to use procedures (<proc_call>, <proc_def_begin>) defined in external text (.mcr) files or in other macros.
Syntax:
<-include->("What")
What
This parameter can be one of these:
macro:ExistingMacroName
file:FullPathToExistingFile
Example:
<#>
This example shows how to use <-include->
command
<cmds>
<-include->("file:c:\MyMacroLibrary\lib.mcr")
<proc_call>(VeryCommonTask,"1","2","3")